home *** CD-ROM | disk | FTP | other *** search
- #import <time.h>
- #import "cass.h"
-
-
- typedef int eventLink;
-
-
- struct eventStruct {
- eventLink present, previous, next;
-
- struct tm ts;
- int type;
- int priority;
- int anniversaryType;
- int anniversaryFrequency;
- int sleepNumber;
- int sleepInterval;
- (BOOL) playAlarm;
- (BOOL) showMessage;
- int voiceAlarmType;
- float alarmVolume;
-
- char alarmSound[FILENAME_LENGTH];
- char message[MESSAGE_SIZE];
-
- };
-